home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 8 / The Arsenal Files Collection #8 (Arsenal Computer) (1996).ISO / prg_casm / snip9611.zip / A2E.H < prev    next >
C/C++ Source or Header  |  1996-11-24  |  460b  |  17 lines

  1. /* +++Date last modified: 02-Nov-1995 */
  2.  
  3. /*
  4. **  ASCII <=> EBCDIC conversion functions
  5. */
  6.  
  7. #ifndef A2E__H
  8. #define A2E__H
  9.  
  10. unsigned char ASCIItoEBCDIC(const unsigned char c);   /* A2E.C          */
  11. unsigned char EBCDICtoASCII(const unsigned char c);   /* A2E.C          */
  12.  
  13. extern int ascii2ebcdic[256];                         /* Toascii.C      */
  14. extern int ebcdic2ascii[256];                         /* Toascii.C      */
  15.  
  16. #endif /* A2E__H */
  17.